This resource address updates the configuration properties of the alert
specified by the mandatory uri
parameter from the specified database.
Upon success, MarkLogic Server returns a status code 202 (Accepted) if the request causes a restart, or status code 204 (No Content) if the request does not cause a restart. If the payload is malformed or the alert does not exist, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin
rolehttp://marklogic.com/xdmp/privileges/manage-admin
http://marklogic.com/xdmp/privileges/manage
privilege, plus one of the following privileges:
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/database-ID
http://marklogic.com/xdmp/privileges/admin/database/alerts/database-ID
The properties that can be modified are listed below.
Note: The properties described here are for XML payloads. In general they are the same for
JSON, with the exception that, in JSON, schemas
, namespaces
,
using-namespaces
, module-locations
, events
,
audit-events
, and audit-restrictions
are expressed in singular
form.
id
uri
name
description
triggers
This is a complex structure with the following children:
trigger
domains
This is a complex structure with the following children:
domain
options
This is a complex structure with the following children:
option
actions
This is a complex structure with the following children:
action
curl -X PUT --digest -u admin:admin -H "Content-type: application/json" \ -d '{ "name": "New Name", "description": "New Description" }' \ http://localhost:8002/manage/v2/databases/Documents/alert/configs/properties?uri=my-alert-config ==> Updates the "name" and "description" properties of the "my-alert-config" alert.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.